type crypto/x509.potentialParent

8 uses

	crypto/x509 (current package)
		cert_pool.go#L125: type potentialParent struct {
		cert_pool.go#L132: func (s *CertPool) findPotentialParents(cert *Certificate) []potentialParent {
		cert_pool.go#L143: 	var matchingKeyID, oneKeyID, mismatchKeyID []potentialParent
		cert_pool.go#L152: 			matchingKeyID = append(matchingKeyID, potentialParent{candidate, constraint})
		cert_pool.go#L155: 			oneKeyID = append(oneKeyID, potentialParent{candidate, constraint})
		cert_pool.go#L157: 			mismatchKeyID = append(mismatchKeyID, potentialParent{candidate, constraint})
		cert_pool.go#L165: 	candidates := make([]potentialParent, 0, found)
		verify.go#L909: 	considerCandidate := func(certType int, candidate potentialParent) {